home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 428 b | 24 lines | [TEXT/ToyS] |
- property kasWindowTitle : "Clipboard Picture"
- global gasWindow
-
-
- on run
- set gasWindow to ¬
- display drawing titled kasWindowTitle ¬
- with dimensions {128, 128}
- end run
-
-
- on idle
- set clipAvail to (clip with content flavors)
-
- if (clipAvail contains "PICT") then
- draw a picture into gasWindow ¬
- using data (clip flavor "PICT") ¬
- with scale {-2, -2} ¬
- with a clear slate -- Half size
- end if
-
- return 15
- end idle
-